home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / Aztec C 5.0a disk 1.adf / include / workbench / startup.h < prev    next >
C/C++ Source or Header  |  1989-07-17  |  497b  |  25 lines

  1. #ifndef    WORKBENCH_STARTUP_H
  2. #define    WORKBENCH_STARTUP_H
  3. #ifndef    EXEC_TYPES_H
  4. #include    "exec/types.h"
  5. #endif    /* !EXEC_TYPES_H */
  6. #ifndef    EXEC_PORTS_H
  7. #include    "exec/ports.h"
  8. #endif    /* !EXEC_PORTS_H */
  9. #ifndef    LIBRARIES_DOS_H
  10. #include    "libraries/dos.h"
  11. #endif    /* !LIBRARIES_DOS_H */
  12. struct    WBStartup    {
  13. struct    Message    sm_Message;
  14. struct    MsgPort    *    sm_Process;
  15. BPTR    sm_Segment;
  16. LONG    sm_NumArgs;
  17. char    *    sm_ToolWindow;
  18. struct    WBArg    *    sm_ArgList;
  19. };
  20. struct    WBArg    {
  21. BPTR    wa_Lock;
  22. BYTE    *    wa_Name;
  23. };
  24. #endif
  25.